home *** CD-ROM | disk | FTP | other *** search
Text File | 2000-01-29 | 958 b | 70 lines | [TEXT/ttxt] |
- // RV
- // herve.nicol@infini.fr
- // I made this as a trial, but I think it is quite good! :)
-
- Resn=10,
-
- Durn=".5",
-
-
- // rotating camera
- CamX="40*cos(t/2)",
- CamY="40*sin(t/2)",
- CamZ="40*cos(t/3)",
-
- CmLX="0",
- CmLY="0",
- CmLZ="5",
-
- // Gives more movement to the scene
- CUpX="cos(t)",
- CUpY="sin(t)",
- CUpZ="10",
-
-
- // These variables are only used for colors
- C0="abs(sin(t/2))",
- C1="abs(cos(t/5))",
-
- // heads color, green makes difference from tails
- LvlR="C0",
- LvlG=".7 - .33 * C1",
- LvlB="C1",
-
-
- // color cycling + fading to background
- R="C0*(1-dt) + (C1/6)*(dt)",
- G="0",
- B="C1*(1-dt) + (C0/6)*(dt)",
-
- // Back color cycling
- BckR="C1/6",
- BckG="0",
- BckB="C0/6",
-
-
- widt=640,heig=480,
-
- ConL=1,ConB=0,
-
-
- Fall=".05",
-
-
- // Lines width is bass sensitive and slowly decreases
- LWdt="1.5*BASS1 - (7 * dt)",
-
-
- // Draw a circle of points in (X,Y)
- X="10*cos(s*6.28)",
- Y="10*sin(s*6.28)",
-
- // Show the magnitude in Z
- Z="14*mag(s) - 10*dt",
-
- Pers="150",
- Scal="2500",
-
- ScSz=1,
-
- Vers=30